index.md (1163B)
1 +++ 2 title = 'Types of graphs' 3 +++ 4 # Types of graphs 5 ## Symmetricity 6 7 | **Undirected (symmetric)** | **Directed/digraph (asymmetric)** | **Mixed** | 8 | --- | --- | --- | 9 |  |  |  | 10 11 ## Weighted graph 12 13  14 15 ## Simplicity 16 17 | **Simple** | **Multigraph** | 18 | --- | --- | 19 | Undirected, unweighted graph that has no loops and no more than one edge between any two different vertices<br> | Multiple edges connecting the same two vertices within a simple graph<br> | 20 21 ## Connectedness 22 23 A graph may also have a connected component 24 25 | **Connected** | **Disconnected** | 26 | --- | --- | 27 | If there is for any two given vertices a path between them<br> | If not all pairs of vertices have a path between them<br> |